PUT
https://api.applivery.io/v1/integrations/employees/{applicationEmployeeId}
curl -X PUT "https://api.applivery.io/v1/integrations/employees/{applicationEmployeeId}" \
-H "Authorization: Bearer <YOUR_API_KEY>" \
-H "Content-Type: application/json" \
-d '{
"tags": [
"string"
]
}'const response = await fetch("https://api.applivery.io/v1/integrations/employees/{applicationEmployeeId}", {
method: "PUT",
headers: {
Authorization: "Bearer <YOUR_API_KEY>",
"Content-Type": "application/json",
},
body: JSON.stringify({
"tags": [
"string"
]
}),
});
const data = await response.json();import requests
response = requests.put(
"https://api.applivery.io/v1/integrations/employees/{applicationEmployeeId}",
headers={"Authorization": "Bearer <YOUR_API_KEY>"},
json={
"tags": [
"string"
]
},
)
data = response.json()Request
Send your API key in the request header
authorization
Example:
Authorization: Bearer <token>
applicationEmployeeId
string
required
Body Params
application/json
tags
array [string]
optional
{
"tags": [
"string"
]
}
Responses
200 Response
application/json
status
boolean
optional
data
object
optional
id
string
optional
from
string
optional
type
string
optional
email
string
optional
tags
array [string]
optional
{
"status": true,
"data": {
"id": "string",
"from": "store",
"type": "traditional",
"email": "[email protected]",
"tags": [
"string"
]
}
}
401 Response
application/json
status
boolean
optional
error
object
optional
code
number
optional
message
string
optional
{
"status": false,
"error": {
"code": 4002,
"message": "No auth token"
}
}
404 Response
application/json
status
boolean
optional
error
object
optional
code
number
optional
message
string
optional
{
"status": false,
"error": {
"code": 3001,
"message": "Entity not found"
}
}